Further minor ssl relo fixes.
authorKeir Fraser <keir.fraser@citrix.com>
Tue, 13 May 2008 08:20:23 +0000 (09:20 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Tue, 13 May 2008 08:20:23 +0000 (09:20 +0100)
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
tools/python/xen/web/connection.py

index 5145f632b6257ca04168008e442604c1fff6d1de..7d5702fce066489dc8b62c021186aa2a81fdf114 100644 (file)
@@ -135,13 +135,15 @@ class SSLSocketServerConnection(SocketServerConnection):
     received data to one end of the pipe, then read from the other end:
     
     p2cread, p2cwrite = os.pipe()
-    threading.Thread(target=connection.recv2fd, args=(sock, p2cwrite)).start()
+    threading.Thread(target=connection.SSLSocketServerConnection.recv2fd,
+                     args=(sock, p2cwrite)).start()
     os.read(p2cread, 1024)
     
     To use fd2send():
     
     p2cread, p2cwrite = os.pipe()
-    threading.Thread(target=connection.fd2send, args=(sock, p2cread)).start()
+    threading.Thread(target=connection.SSLSocketServerConnection.fd2send,
+                     args=(sock, p2cread)).start()
     os.write(p2cwrite, "data")
     """
 
@@ -233,6 +235,7 @@ class SSLSocketServerConnection(SocketServerConnection):
 
     recv2fd = staticmethod(recv2fd)
 
+
     def fd2send(sock, fd):
         try:
             while True:
@@ -278,6 +281,7 @@ class SSLSocketServerConnection(SocketServerConnection):
 
     fd2send = staticmethod(fd2send)
 
+
 def hostAllowed(addrport, hosts_allowed):
     if hosts_allowed is None:
         return True